* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: rgb(92, 33, 6);
  background-image: url('\/images\/brownNgoldSeamless.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 3%;
}

a:link, a:visited {
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: goldenrod;
  color: black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: goldenrod;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: goldenrod;
  color: black;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: goldenrod;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
    background-color: goldenrod;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.active {
    background-color: goldenrod;
    color: black;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
  border-bottom: 3px solid goldenrod;
}

#box {
  padding: 37px;
  border: 3px solid goldenrod;
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
}

form {
  text-align: center;
  display: flex;
  gap: 7px;
  flex-direction: column;
  width: 100%;
  max-width: 230px;
}

form input {
  padding: 10px;
  border-radius: 5px;
  outline: none;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
form button {
  padding: 10px;
  background: rgba(0, 137, 0, 1);
  color: goldenrod;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.change {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
  justify-content: center;
}

.change a {
  text-decoration: none;
  font-weight: bold;
  color: goldenrod;
}

#signup-link {
  margin-top: 3px;
  line-height: 31px;
  justify-self: center;
  align-self: center;
}

#footer-div {
  display: grid;
  grid-template-areas:
    "Mid Mid Mid";
  grid-template-columns: 3fr;
  gap: 3px;
  position: fixed;
  bottom: 0%;
  left: 0%;
  height: 37px;
  width: 100%;
  background-color: rgb(11, 73, 16);
  color: rgb(207, 182, 37);
  border-top: 3px solid goldenrod;
  z-index: 1000;
}

#footer-m-div {
  grid-area: Mid;
  text-align: center;
  padding: -10px;
}